home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Languguage OS 2
/
Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO
/
a_utils
/
cool_pl2.lha
/
cool-pl2
/
tst4.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-25
|
375b
|
18 lines
/* Copyright abandoned 1991 by Lance Norskog. Use as you will. */
/* Exception handling test. */
#include <setjmp.h>
#include "cool.h"
main() {
cool_exception("NastyBad",
{ /* code */
cool_raise("NastyBad", "Exceptions don\'t %s!", "work");
},{ /* handler */
printf("Exceptions do indeed work.\n");
})
cool_raise("ThisIsAnException", "Remove the core file");
}